home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac-Source 1994 July
/
Mac-Source_July_1994.iso
/
C and C++
/
Libraries
/
usr (gcc 1.37 libs)
/
gen
/
getwd.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-03-20
|
96b
|
7 lines
#include <sys/param.h>
char *getwd(char *path)
{
return (char *)getcwd(path, MAXPATHLEN);
}